git: use lower case in error message
authorJoonas Koivunen <joonas.koivunen@gmail.com>
Mon, 17 Apr 2017 12:08:51 +0000 (15:08 +0300)
committerJoonas Koivunen <joonas.koivunen@gmail.com>
Mon, 17 Apr 2017 12:08:51 +0000 (15:08 +0300)
src/cargo/sources/git/utils.rs
tests/git.rs

index 464ca73f34823ef13860dff47b4837b7a72cf304..7c8050c8f365f71a56ffc3aae4aae3422d0d57a7 100644 (file)
@@ -295,7 +295,7 @@ impl<'a> GitCheckout<'a> {
 
             for mut child in repo.submodules()?.into_iter() {
                 update_submodule(repo, &mut child, cargo_config).chain_error(|| {
-                    human(format!("Failed to update submodule `{}`",
+                    human(format!("failed to update submodule `{}`",
                                   child.name().unwrap_or("")))
                 })?;
             }
index 71418775de8fcda8925d0c07278cd8a038ef5afe..5b4ae50593ad9363fd6022e64bb7ac233c1063f9 100644 (file)
@@ -810,7 +810,7 @@ Caused by:
   Unable to update {}
 
 Caused by:
-  Failed to update submodule `src`
+  failed to update submodule `src`
 
 To learn more, run the command again with --verbose.\n", path2url(git_project.root()));